home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / falcon / programm.ing / asm56.zoo / makefile < prev    next >
Makefile  |  1992-11-14  |  366b  |  18 lines

  1. STUFF = caltone.omf memtest.omf pink.omf sloader.omf test-dac.omf \
  2.     test-int.omf thru.omf reverb.omf flange.omf chorus.omf
  3.  
  4. CPP = /lib/cpp
  5.  
  6. all:    $(STUFF)
  7.  
  8. clean:    ; rm -f *.out *.omf *.lis tmp.a56 *.bak .jrc LOG ERR
  9.  
  10. .SUFFIXES:    .a56 .omf
  11.  
  12. .a56.omf:    $*.a56
  13.         $(CPP) < $*.a56 > tmp.a56
  14.         a56 tmp.a56 > $*.lis
  15.         rm tmp.a56
  16.         mv a56.out $*.out
  17.         toomf < $*.out > $*.omf
  18.